home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000233_fdc@sesame.cc.columbia.edu_Wed Aug 20 15:51:38 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  4KB  |  78 lines

  1. Article: 14471 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news-not-for-mail
  3. From: fdc@sesame.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Kermit for PC upgrade/transfer
  6. Date: 20 Aug 2003 15:51:33 -0400
  7. Organization: Columbia University
  8. Lines: 61
  9. Message-ID: <bi0jg5$eod$1@sesame.cc.columbia.edu>
  10. References: <cRN0b.4242$B8.2894@newsread2.news.atl.earthlink.net> <bi0hdj$cqu$5@blue.rahul.net>
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1061409093 11194 128.59.59.56 (20 Aug 2003 19:51:33 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 20 Aug 2003 19:51:33 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14471
  16.  
  17. In article <bi0hdj$cqu$5@blue.rahul.net>,
  18.  <dold@KermitXfor.usenet.us.com> wrote:
  19. : Brad in MI <bNOrSPAMv4inMEc@earthlink.net> wrote:
  20. : > I've gone through the Kermit website (wow, lots of stuff!) and am
  21. : > considering getting Kermit to transfer files to my new PC. I have a
  22. : > couple of questions, though.
  23. : > The old PC is Windows 95B, and the new one is Windows XP Pro. Each PC
  24. : > has a 56K modem. Can I connect the two via a simple 6-ft phone line
  25. : > between the two modems for this transfer?
  26. : As much as I love Kermit, this really isn't the right application for it.
  27. : For the cost of a Windows95 license, you could buy two NIC cards and a
  28. : crossover cable, and use Windows file sharing to copy all the files.
  29. This would probably work, but if it didn't you'd waste lots of time
  30. figuring out what's wrong and fixing it -- drivers, interrupts, etc etc.
  31.  
  32. : Or you could take the disk out of the old machine and put it in the new
  33. : machine and copy everything.
  34. If the old disk and new PC were compatible and if you didn't need the first
  35. machine to be up for some reason.
  36.  
  37. : Or you could buy a software/hardware product designed for just exactly this
  38. : purpose, that includes a cable (serial, parallel, or USB).
  39. Sometimes there are reasons for using Kermit for this:
  40.  
  41.  . You already have Kermit and know how to use it.
  42.  . The machines are not colocated (doesn't apply in this case).
  43.  . There is a reason that your machine doesn't have a network interface.
  44.  
  45. etc etc.  While Kermit does not have a "Lap-Link" like user interface,
  46. it's perfectly well suited for bulk directory-tree copies from one machine
  47. to another.  The Windows-to-Windows case is, of course. "trivial", but
  48. Kermit can do the same thing between Windows and UNIX, UNIX and VMS,
  49. Windows and VMS, etc, so for people who do a lot of this kind of work on
  50. a variety of platforms, Kermit is not an unreasonable choice.  It can
  51. descend through directory trees and replicate them (if necessary) on
  52. the receiving end, switch automatically between text and binary mode for
  53. each file, convert record formats and character sets of text files (if
  54. necessary), and allows all kinds of fancy selection criteria and processing
  55. options that might come in handy:
  56.  
  57.   [C:\tmp\] K-95> send ? Filename, or switch, one of the following:
  58.    /after:     /delete        /mail:         /print:      /smaller-than:
  59.    /array:     /except:       /move-to:      /protocol:   /starting-at:
  60.    /as-name:   /filter:       /nobackupfiles /quiet       /subject:
  61.    /before:    /filenames:    /not-after:    /recover     /text
  62.    /binary     /larger-than:  /not-before:   /recursive   /transparent
  63.    /command    /listfile:     /pathnames:    /rename-to:  /type:
  64.   [C:\tmp\] K-95>
  65.  
  66. Of course I'm partial, but even so...  I often find myself using Kermit
  67. to solve some problem that might be better solved with some other tool
  68. because I know how to do it with Kermit.  Usually Kermit finishes the job
  69. before I could have gathered the other tools and/or figured out how to
  70. use them.
  71.  
  72. - Frank
  73.